home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9202.ARJ / 1002014B < prev    next >
Text File  |  1992-06-02  |  323b  |  16 lines

  1.  
  2. Listing 2 -- the file rename.c
  3.  
  4. /* rename function -- UNIX version */
  5. #include "xstdio.h"
  6.  
  7.         /* UNIX system calls */
  8. int _Link(const char *, const char *);
  9. int _Unlink(const char *);
  10.  
  11. int (rename)(const char *old, const char *new)
  12.     {   /* rename a file */
  13.     return (_Link(old, new) ? -1 : _Unlink(old));
  14.     }
  15.  
  16.